home *** CD-ROM | disk | FTP | other *** search
/ Sounds Terrific 1 / Sounds Terrific CD (1994)(Weird Science)(Disc 2 of 2)[!][Amiga-PC].iso / modules / t / topscrn.mod < prev    next >
Text File  |  1994-08-04  |  3KB  |  76 lines

  1. The easist mod in the world.
  2. Sawmill #1 @3750
  3. Mon Dec 30 23:41:20 1991
  4.  
  5. ModName    : TOPSCRN.MOD
  6. WWIV Ver   : Written on v4.12, but should work on ANY version
  7. Files      : CONIO.C
  8. Difficulty : See Title
  9. Why        : Because I haven't seen anyone doe this before.
  10.  
  11.  
  12.  
  13. Well, I hardly consider this a mod, but thought it was just helpful enough
  14. to post.  This is REALLY simple.  I have a combination Elric FROM Mod and
  15. another FROM mod that I can't remember the name of right now.  Anyway, since
  16. I had a decent amount of long distance callers, I thought it would be nice
  17. to see where they were calling from from the TOPSCREEN.  If someone has done
  18. this before, a thousand pardons, but I thought this was SO simple that
  19. perhaps it had been overlooked.  This is one of those mods that I added,
  20. and never thought to release 'cause it was SO simple.  SO simple, that no
  21. one else had released it.  :)  :)
  22.  
  23. Anyway, on with the super-mini-mod.
  24.  
  25. This puts the thisuser.citystate in place of "Com Disabled".  It does NOT
  26. disable this feature, if just takes if off the topscreen and replaces it
  27. with where the user is calling from.  You must have some type of FROM mod
  28. installed which uses thisuser.citystate (or whatever)
  29.  
  30. Load up CONIO.C
  31. Do a search for "Comm Disabled"
  32. It should look something like this:
  33.  
  34.   if (topdata)
  35.   {
  36.     movecsr(6,ln);
  37.     if ((using_modem) && (!incom))
  38.       outs("Comm Disabled");
  39.     else
  40.       outs("═════════════");
  41.  
  42.     movecsr(24,ln);
  43.     if ((realsl !=255) && (thisuser.sl==255))
  44.       outs("Temp Sysop");
  45.  
  46. Now, replace the "Comm Disabled" and the "═════════════" with
  47. thisuser.citystate.  It should look something like this now:
  48.  
  49.   if (topdata)
  50.   {
  51.     movecsr(6,ln);
  52.     if (!incom)
  53.       outs(thisuser.citystate);
  54.     else
  55.       outs(thisuser.citystate);
  56.  
  57.     movecsr(24,ln);
  58.     if ((realsl !=255) && (thisuser.sl==255))
  59.       outs("Temp Sysop");
  60.  
  61.  
  62. That was SO simple that it about makes you sick, huh?  Your F-3 key will still
  63. work, but it won't tell you that it is.  I suppose you could make it where it
  64. would display the thisuser.citystate UNLESS F3 was pressed, but since I never
  65. use it (I disable modem OUTPUT, so the user can't see what I'm doing) I didn't
  66. bother.
  67. As always, make a backup of your source before EVERY mod, although if you mess
  68. this up...  (Or do like me, do little crap mods like this all at once, try to
  69. compile and then trace it down.  Twice the work, half the production)
  70.  
  71. Sawmill
  72. 9
  73. 9  3╓──────────────────────2Bill and Ted's Excellent BBS3───────────────────────╖
  74. 81  3║  1     Snarfable 3- 1USR HST v.42bis 3- 1AutoVal 3- 1WWIV Support Files        3║
  75. 7  3╙──────7(317) 452-09450  4WWIVLink @13752  WWIVNet @37507 SysOp:2Sawmill3───────╜
  76.